home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue37 / DynArr / Array6.dpr < prev    next >
Encoding:
Text File  |  1998-07-03  |  274 b   |  17 lines

  1. program Array6;
  2.  
  3. uses
  4.   Forms,
  5.   Array6U in 'Array6U.pas' {Array6MainForm},
  6.   Array6U2 in 'Array6U2.pas';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11. {$ifdef Win32}
  12.   Application.Initialize;
  13. {$endif}
  14.   Application.CreateForm(TArray6MainForm, Array6MainForm);
  15.   Application.Run;
  16. end.
  17.